home *** CD-ROM | disk | FTP | other *** search
/ Video Toaster 4.2 / Video Toaster v4.2.iso / arexx / editor / setdefault.rexx < prev    next >
OS/2 REXX Batch file  |  1995-12-22  |  384b  |  15 lines

  1. /* SetDefault.rexx -- Save current project as the default.      */
  2. /* By Bob Caron © 1995 NewTek Inc.                              */
  3.  
  4. call remlib('PROJECT_REXX_PORT')
  5. call addlib('PROJECT_REXX_PORT',0)
  6.  
  7. call PROJECTSAVE("Toaster:Programs/Switcher_Support/DefaultProject")
  8.  
  9. call req_error("Saved current project as default boot-up project.")
  10.  
  11. call remlib('PROJECT_AREXX_PORT')
  12.  
  13. exit
  14.  
  15.